设置像素

代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
'use strict';
import {Dimensions} from 'react-native'
const deviceH = Dimensions.get('window').height
const deviceW = Dimensions.get('window').width
const basePx = 375
export default function px2dp(px) {
return px * deviceW / basePx
}
import px2dp from '../util'
px2dp(70)